Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
subleveldown
Advanced tools
Sublevels implemented using leveldowns
npm install subleveldown
var sub = require('subleveldown')
var level = require('level')
var db = level('db')
var test = sub(db, 'test') // test is just a regular levelup
var test2 = sub(db, 'test2')
var nested = sub(test, 'nested')
test.put('hello', 'world', function() {
nested.put('hi', 'welt', function() {
// will print {key:'hello', value:'world'}
test.createReadStream().on('data', console.log)
})
})
subdb = sub(db, [prefix], [options])
Returns a levelup instance that uses the subleveldown with prefix
.
The options
argument is passed to the levelup constructor
MIT
[2.1.0] - 2015-10-30
standard
for linting (@mafintosh)abstract-leveldown
from ^2.1.0
to ^2.4.1
(@mafintosh)levelup
from ^0.19.0
to ^1.2.1
(@mafintosh)memdown
devDependency from ^1.0.0
to ^1.1.1
(@mafintosh)tape
devDependency from ^3.0.3
to ^4.2.2
(@mafintosh)opts
parameter to SubDown
for custom open logic (@mafintosh)opts.open
open hook (@mafintosh)FAQs
Split a levelup database into sublevels with their own keyspace, encoding and events
The npm package subleveldown receives a total of 31,141 weekly downloads. As such, subleveldown popularity was classified as popular.
We found that subleveldown demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.